/***********************
The register-form itself
***********************/

#registration-frame {
    display: none;
    z-index: 100;
    overflow: auto; /*Makes sure the form is scrollable when it extends beyond the window*/
    position: fixed;
    /*background: rgba(0,0,0,0.6);*/
    height: 100%;
    width: 100%;
    top: 0;
}

#registration-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    max-width: 40em;
    min-height: 40em;
    top: 2.5em;
    margin: 0 auto;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    border-radius: 1px;
    padding-bottom: 0.5em;
}

#reg-close {
    right: 1em;
    position: absolute;
    top: 1em;
    font-size: 18px;
    padding: 0.3em 0.3em 0em;
    border-radius: 1px;
}

#reg-close:hover {
    background: rgb(225,225,225);
}

#reg-close span {
}

#reg-title {
    margin: 0em 3em;
    padding-top: 3em;
    padding-bottom: 0.5em;
    text-align: center;
}

#reg-title h2 {
    margin: 0;
    padding-bottom: 0.2em;
    letter-spacing: 2px;
    border-bottom-style: solid;
    border-width: 1px;
    line-height: 1em;
}

#reg-title p {
    padding-top: 0.5em;
}

#register-form {
    margin: 1em 3em;
    min-width: 10em;
}

.register-form {
    margin: 1em 3em ;
    min-width: 10em;
}

#register-form .form-group {
    margin-bottom: 0;
}

#register-form .form-group > div {
    padding: 2px 3px 3px ;
}


#register-form .form-control {
    background-color: white;
    border-radius: 2px;
/*    height: 40px;*/
    font-size: 15px;

    border: 0px solid;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

#register-form .form-control:focus {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.not-a-match {
    background: rgb(255, 206, 206) !important;
}

#signup-button {
    background-color: rgba(96, 162, 192, 0.9);
    border-style: none;
    border-radius: 1px;
    width: 100%;
    height: 45px;
    font-size: 18px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    margin-top: 0.5em;
}

#signup-button:hover {
    background-color: rgb(96, 162, 192);
}


#bbr-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    max-width: 28em;
    top: 6em;
    margin: 0 auto;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    border-radius: 1px;
    padding: 0.75em 0;
    font-size: 1.25em;
}

#email {
    position: absolute;
    z-index: -9999;
    opacity: 0;
    top: -100%;
}

#betaBugReportBtn {
    margin: 10px 0 0 0;
    display: block;
    color: #cd0000;
}

#captcha-container {
    position: relative;
}

#captcha-complete {
    position: absolute;
    opacity: 0;
    width: 0;
    left: calc(50% - 120px);
    bottom: 32px;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
}

/************
MEDIA QUERIES
*************/
@media (max-width: 1440px) {
    #reg-close {
        right: 0.5em;
        top: 0.5em;
    }
    #reg-title {
        padding-top: 2em;
        padding-bottom: 1px;
    }
}

@media (max-width: 500px) {
    #bbr-content {

    }
    .register-form {
        margin: 0.5em 0.5em 0;
    }

}

@media (max-width: 86px) {

    #reg-title {
        padding-top: 2em;
        padding-bottom: 1px;
    }

/*    #betaBugReportBtn {
        margin: 0;
        position: absolute;
        top: -2.5em;
        right:1em;
        font-size: 1.25em;
    }*/
}
